home *** CD-ROM | disk | FTP | other *** search
Wrap
mode=options_sound name=Screen Menu # Include the animations that are used in every menu include=data/levels/menus.txt # Sounds for the mode sound=sound_select,,sound_up,,sound_down directory_sound=data/sounds/ sound_select: sound_list=menu_select.wav sound_up: sound_list=menu_up.wav sound_down: sound_list=menu_down.wav # Controls are the input that we are going to be watching for, and what action to perform when # we see that input. control=input_select,,input_select_enter,,input_quit,,input_up,,input_down,,input_joy_up,,input_joy_down,,input_joy_button,,input_joy_start input_select: key=space action=select input_select_enter: key=enter action=select input_quit: key=escape action=quit input_up: key=up action=option_up input_down: key=down action=option_down input_joy_up: joy=up action=option_up input_joy_down: joy=down action=option_down input_joy_button: joy=button_1 action=select input_joy_start: joy=start action=quit # Actions are the work horses of this system. They interact with objects, and should be used # for as many inter-object calls as makes sense. action=select,,select_enter,,quit,,option_up,,option_down select: effect=menu,,select select_enter: effect=menu,,select quit: effect=mode,,data/mode_options.txt option_up: effect=menu,,optionUp option_down: effect=menu,,optionDown # Logic controllers are classes that run along with everything eles in the mode, but do not # have any specific assets. They will call actions, and look at all kinds of things in # a mode. You can give them variables to work on here, or all the variables can be # initialized in code. logic=menu_logic,,sound_logic menu_logic: purpose=sound_toggle order=1 options=Sound On,,Sound Off,,-,,Music On,,Music Off,,-,,Back option_mode=-,,-,,-,,-,,-,,-,,data/mode_options.txt option_data=options option_data_keypair=sound,,1,,sound,,0,,-,,-,,music,,1,,music,,0 option_icon=icon_select option_icon_offset=-70,,-25 option_desc=Sound is enable. Music can be turned off separately.,,Disables all sound, for those who like \nto experience BaseGolf is silence.,,-,,Organ Music will be played during the game.,,Not a fan of organ music? Feel free to turn it off.,,-,,- option_desc_pos=0,,570 option_desc_size=15 sound_logic: order=2